GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Pull Request — master (#19)
by Michael
13:08
created
code/community/EbayEnterprise/Eb2cCore/Test/Model/ConfigRegistryTest.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
     public function testUnknownProp()
175 175
     {
176 176
         // ensure code execution continues after the error is triggered
177
-        $handler = set_error_handler(function () {
177
+        $handler = set_error_handler(function() {
178 178
         });
179 179
         $config = Mage::getModel('eb2ccore/config_registry');
180 180
         $nonexistent = $config->nonexistentConfig;
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
      */
200 200
     public function testAllPropsReadonly()
201 201
     {
202
-        $handler = set_error_handler(function () {
202
+        $handler = set_error_handler(function() {
203 203
         });
204 204
         $config = Mage::getModel('eb2ccore/config_registry')
205 205
             ->addConfigModel($this->_createConfigStub());
Please login to merge, or discard this patch.
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -1,17 +1,17 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Copyright (c) 2013-2014 eBay Enterprise, Inc.
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the Open Software License (OSL 3.0)
8
- * that is bundled with this package in the file LICENSE.md.
9
- * It is also available through the world-wide-web at this URL:
10
- * http://opensource.org/licenses/osl-3.0.php
11
- *
12
- * @copyright   Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/)
13
- * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
14
- */
3
+     * Copyright (c) 2013-2014 eBay Enterprise, Inc.
4
+     *
5
+     * NOTICE OF LICENSE
6
+     *
7
+     * This source file is subject to the Open Software License (OSL 3.0)
8
+     * that is bundled with this package in the file LICENSE.md.
9
+     * It is also available through the world-wide-web at this URL:
10
+     * http://opensource.org/licenses/osl-3.0.php
11
+     *
12
+     * @copyright   Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/)
13
+     * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
14
+     */
15 15
 
16 16
 class EbayEnterprise_Tax_Test_Model_Total_Quote_Address_TaxTest extends EcomDev_PHPUnit_Test_Case
17 17
 {
Please login to merge, or discard this patch.
src/app/code/community/EbayEnterprise/Eb2cCore/Test/Model/ObserverTest.php 2 patches
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -117,26 +117,26 @@
 block discarded – undo
117 117
     {
118 118
         return [
119 119
             [
120
-                Mage::getModel('sales/quote_item', ['base_row_total' => 88.00,]),
121
-                new Varien_Object(['base_discount_amount' => 250.00,]),
120
+                Mage::getModel('sales/quote_item', ['base_row_total' => 88.00, ]),
121
+                new Varien_Object(['base_discount_amount' => 250.00, ]),
122 122
                 [['amount' => 8.80]],
123 123
                 79.20
124 124
             ],
125 125
             [
126
-                Mage::getModel('sales/quote_item', ['base_row_total' => 88.00,]),
127
-                new Varien_Object(['base_discount_amount' => 100.00,]),
126
+                Mage::getModel('sales/quote_item', ['base_row_total' => 88.00, ]),
127
+                new Varien_Object(['base_discount_amount' => 100.00, ]),
128 128
                 [['amount' => 8.80], ['amount' => 79.20]],
129 129
                 0.00
130 130
             ],
131 131
             [
132
-                Mage::getModel('sales/quote_item', ['base_row_total' => 88.00,]),
133
-                new Varien_Object(['base_discount_amount' => 3.96,]),
132
+                Mage::getModel('sales/quote_item', ['base_row_total' => 88.00, ]),
133
+                new Varien_Object(['base_discount_amount' => 3.96, ]),
134 134
                 [['amount' => 8.80]],
135 135
                 3.96
136 136
             ],
137 137
             [
138
-                Mage::getModel('sales/quote_item', ['base_row_total' => 88.00,]),
139
-                new Varien_Object(['base_discount_amount' => 11.88,]),
138
+                Mage::getModel('sales/quote_item', ['base_row_total' => 88.00, ]),
139
+                new Varien_Object(['base_discount_amount' => 11.88, ]),
140 140
                 [['amount' => 8.80]],
141 141
                 11.88
142 142
             ],
Please login to merge, or discard this patch.
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -1,17 +1,17 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Copyright (c) 2013-2014 eBay Enterprise, Inc.
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the Open Software License (OSL 3.0)
8
- * that is bundled with this package in the file LICENSE.md.
9
- * It is also available through the world-wide-web at this URL:
10
- * http://opensource.org/licenses/osl-3.0.php
11
- *
12
- * @copyright   Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/)
13
- * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
14
- */
3
+     * Copyright (c) 2013-2014 eBay Enterprise, Inc.
4
+     *
5
+     * NOTICE OF LICENSE
6
+     *
7
+     * This source file is subject to the Open Software License (OSL 3.0)
8
+     * that is bundled with this package in the file LICENSE.md.
9
+     * It is also available through the world-wide-web at this URL:
10
+     * http://opensource.org/licenses/osl-3.0.php
11
+     *
12
+     * @copyright   Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/)
13
+     * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
14
+     */
15 15
 
16 16
 class EbayEnterprise_Tax_Test_Model_Total_Quote_Address_TaxTest extends EcomDev_PHPUnit_Test_Case
17 17
 {
Please login to merge, or discard this patch.
Eb2cCore/Test/Model/System/Config/Backend/Language/CodeTest.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 		 * there's been a change so we return true on 'isValueChanged'.
30 30
 	 	 */
31 31
         $backendMock = $this->getModelMockBuilder('eb2ccore/system_config_backend_language_code')
32
-            ->setMethods(array( 'isValueChanged',))
32
+            ->setMethods(array('isValueChanged',))
33 33
             ->setConstructorArgs([['language_helper' => $mockLangHelper]])
34 34
             ->getMock();
35 35
         $backendMock->expects($this->once())
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
             ->will($this->returnArgument(0));
55 55
 
56 56
         $backendMock = $this->getModelMockBuilder('eb2ccore/system_config_backend_language_code')
57
-            ->setMethods(array( 'isValueChanged',))
57
+            ->setMethods(array('isValueChanged',))
58 58
             ->setConstructorArgs([['language_helper' => $mockLangHelper, 'core_helper' => $mockCoreHelper]])
59 59
             ->getMock();
60 60
         $backendMock->expects($this->once())
Please login to merge, or discard this patch.
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -1,17 +1,17 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Copyright (c) 2013-2014 eBay Enterprise, Inc.
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the Open Software License (OSL 3.0)
8
- * that is bundled with this package in the file LICENSE.md.
9
- * It is also available through the world-wide-web at this URL:
10
- * http://opensource.org/licenses/osl-3.0.php
11
- *
12
- * @copyright   Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/)
13
- * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
14
- */
3
+     * Copyright (c) 2013-2014 eBay Enterprise, Inc.
4
+     *
5
+     * NOTICE OF LICENSE
6
+     *
7
+     * This source file is subject to the Open Software License (OSL 3.0)
8
+     * that is bundled with this package in the file LICENSE.md.
9
+     * It is also available through the world-wide-web at this URL:
10
+     * http://opensource.org/licenses/osl-3.0.php
11
+     *
12
+     * @copyright   Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/)
13
+     * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
14
+     */
15 15
 
16 16
 class EbayEnterprise_Tax_Test_Model_Total_Quote_Address_TaxTest extends EcomDev_PHPUnit_Test_Case
17 17
 {
Please login to merge, or discard this patch.
Eb2cFraud/Model/Adminhtml/System/Config/Backend/Jsinstalled.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
      */
27 27
     public function _afterLoad()
28 28
     {
29
-        $filePattern  = Mage::getBaseDir() . '/js/ebayenterprise_eb2cfraud/*.js';
29
+        $filePattern = Mage::getBaseDir() . '/js/ebayenterprise_eb2cfraud/*.js';
30 30
         $jsFiles = glob($filePattern);
31 31
         if (!$jsFiles) {
32 32
             $publicDisplay = 'Not installed; fraud information will not be collected';
Please login to merge, or discard this patch.
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -1,17 +1,17 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Copyright (c) 2013-2014 eBay Enterprise, Inc.
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the Open Software License (OSL 3.0)
8
- * that is bundled with this package in the file LICENSE.md.
9
- * It is also available through the world-wide-web at this URL:
10
- * http://opensource.org/licenses/osl-3.0.php
11
- *
12
- * @copyright   Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/)
13
- * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
14
- */
3
+     * Copyright (c) 2013-2014 eBay Enterprise, Inc.
4
+     *
5
+     * NOTICE OF LICENSE
6
+     *
7
+     * This source file is subject to the Open Software License (OSL 3.0)
8
+     * that is bundled with this package in the file LICENSE.md.
9
+     * It is also available through the world-wide-web at this URL:
10
+     * http://opensource.org/licenses/osl-3.0.php
11
+     *
12
+     * @copyright   Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/)
13
+     * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
14
+     */
15 15
 
16 16
 class EbayEnterprise_Tax_Test_Model_Total_Quote_Address_TaxTest extends EcomDev_PHPUnit_Test_Case
17 17
 {
Please login to merge, or discard this patch.
community/EbayEnterprise/Eb2cFraud/sql/eb2cfraud_setup/install-0.9.0.php 2 patches
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -22,23 +22,23 @@
 block discarded – undo
22 22
 $installer->startSetup();
23 23
 $entities = array('order', 'quote');
24 24
 
25
-$typeTextOptions = array (
25
+$typeTextOptions = array(
26 26
     'type' => Varien_Db_Ddl_Table::TYPE_TEXT,
27 27
     'visible' => true,
28 28
     'required' => false,
29 29
 );
30 30
 
31 31
 $fraudAttributes = array(
32
-    array( 'name' => 'char_set',        'options' => $typeTextOptions),
33
-    array( 'name' => 'content_types',   'options' => $typeTextOptions),
34
-    array( 'name' => 'encoding',        'options' => $typeTextOptions),
35
-    array( 'name' => 'host_name',       'options' => $typeTextOptions),
36
-    array( 'name' => 'ip_address',      'options' => $typeTextOptions),
37
-    array( 'name' => 'javascript_data',     'options' => $typeTextOptions),
38
-    array( 'name' => 'language',        'options' => $typeTextOptions),
39
-    array( 'name' => 'referrer',        'options' => $typeTextOptions),
40
-    array( 'name' => 'session_id',      'options' => $typeTextOptions),
41
-    array( 'name' => 'user_agent',      'options' => $typeTextOptions),
32
+    array('name' => 'char_set', 'options' => $typeTextOptions),
33
+    array('name' => 'content_types', 'options' => $typeTextOptions),
34
+    array('name' => 'encoding', 'options' => $typeTextOptions),
35
+    array('name' => 'host_name', 'options' => $typeTextOptions),
36
+    array('name' => 'ip_address', 'options' => $typeTextOptions),
37
+    array('name' => 'javascript_data', 'options' => $typeTextOptions),
38
+    array('name' => 'language', 'options' => $typeTextOptions),
39
+    array('name' => 'referrer', 'options' => $typeTextOptions),
40
+    array('name' => 'session_id', 'options' => $typeTextOptions),
41
+    array('name' => 'user_agent', 'options' => $typeTextOptions),
42 42
 );
43 43
 
44 44
 $pfx = 'eb2c_fraud_';
Please login to merge, or discard this patch.
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -1,17 +1,17 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Copyright (c) 2013-2014 eBay Enterprise, Inc.
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the Open Software License (OSL 3.0)
8
- * that is bundled with this package in the file LICENSE.md.
9
- * It is also available through the world-wide-web at this URL:
10
- * http://opensource.org/licenses/osl-3.0.php
11
- *
12
- * @copyright   Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/)
13
- * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
14
- */
3
+     * Copyright (c) 2013-2014 eBay Enterprise, Inc.
4
+     *
5
+     * NOTICE OF LICENSE
6
+     *
7
+     * This source file is subject to the Open Software License (OSL 3.0)
8
+     * that is bundled with this package in the file LICENSE.md.
9
+     * It is also available through the world-wide-web at this URL:
10
+     * http://opensource.org/licenses/osl-3.0.php
11
+     *
12
+     * @copyright   Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/)
13
+     * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
14
+     */
15 15
 
16 16
 class EbayEnterprise_Tax_Test_Model_Total_Quote_Address_TaxTest extends EcomDev_PHPUnit_Test_Case
17 17
 {
Please login to merge, or discard this patch.
EbayEnterprise/Eb2cGiftwrap/Test/Model/Order/Create/GiftingTest.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -1,17 +1,17 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Copyright (c) 2013-2014 eBay Enterprise, Inc.
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the Open Software License (OSL 3.0)
8
- * that is bundled with this package in the file LICENSE.md.
9
- * It is also available through the world-wide-web at this URL:
10
- * http://opensource.org/licenses/osl-3.0.php
11
- *
12
- * @copyright   Copyright (c) 2013-2015 eBay Enterprise, Inc. (http://www.ebayenterprise.com/)
13
- * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
14
- */
3
+     * Copyright (c) 2013-2014 eBay Enterprise, Inc.
4
+     *
5
+     * NOTICE OF LICENSE
6
+     *
7
+     * This source file is subject to the Open Software License (OSL 3.0)
8
+     * that is bundled with this package in the file LICENSE.md.
9
+     * It is also available through the world-wide-web at this URL:
10
+     * http://opensource.org/licenses/osl-3.0.php
11
+     *
12
+     * @copyright   Copyright (c) 2013-2015 eBay Enterprise, Inc. (http://www.ebayenterprise.com/)
13
+     * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
14
+     */
15 15
 
16 16
 use eBayEnterprise\RetailOrderManagement\Payload\PayloadFactory;
17 17
 
Please login to merge, or discard this patch.
src/app/code/community/EbayEnterprise/GiftCard/Test/Model/ContainerTest.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -193,7 +193,7 @@
 block discarded – undo
193 193
         $cardNumbers = ['1234', '2345', '3456', '4567'];
194 194
 
195 195
         $giftCards = array_map(
196
-            function ($cardNumber) {
196
+            function($cardNumber) {
197 197
                 return Mage::getModel('ebayenterprise_giftcard/giftcard')->setCardNumber($cardNumber)->setPin('1234');
198 198
             },
199 199
             $cardNumbers
Please login to merge, or discard this patch.
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -1,17 +1,17 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Copyright (c) 2013-2014 eBay Enterprise, Inc.
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the Open Software License (OSL 3.0)
8
- * that is bundled with this package in the file LICENSE.md.
9
- * It is also available through the world-wide-web at this URL:
10
- * http://opensource.org/licenses/osl-3.0.php
11
- *
12
- * @copyright   Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/)
13
- * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
14
- */
3
+     * Copyright (c) 2013-2014 eBay Enterprise, Inc.
4
+     *
5
+     * NOTICE OF LICENSE
6
+     *
7
+     * This source file is subject to the Open Software License (OSL 3.0)
8
+     * that is bundled with this package in the file LICENSE.md.
9
+     * It is also available through the world-wide-web at this URL:
10
+     * http://opensource.org/licenses/osl-3.0.php
11
+     *
12
+     * @copyright   Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/)
13
+     * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
14
+     */
15 15
 
16 16
 class EbayEnterprise_Tax_Test_Model_Total_Quote_Address_TaxTest extends EcomDev_PHPUnit_Test_Case
17 17
 {
Please login to merge, or discard this patch.
src/app/code/community/EbayEnterprise/GiftCard/Test/Model/GiftcardTest.php 1 patch
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -1,17 +1,17 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Copyright (c) 2013-2014 eBay Enterprise, Inc.
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the Open Software License (OSL 3.0)
8
- * that is bundled with this package in the file LICENSE.md.
9
- * It is also available through the world-wide-web at this URL:
10
- * http://opensource.org/licenses/osl-3.0.php
11
- *
12
- * @copyright   Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/)
13
- * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
14
- */
3
+     * Copyright (c) 2013-2014 eBay Enterprise, Inc.
4
+     *
5
+     * NOTICE OF LICENSE
6
+     *
7
+     * This source file is subject to the Open Software License (OSL 3.0)
8
+     * that is bundled with this package in the file LICENSE.md.
9
+     * It is also available through the world-wide-web at this URL:
10
+     * http://opensource.org/licenses/osl-3.0.php
11
+     *
12
+     * @copyright   Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/)
13
+     * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
14
+     */
15 15
 
16 16
 class EbayEnterprise_GiftCard_Test_Model_GiftcardTest extends EbayEnterprise_Eb2cCore_Test_Base
17 17
 {
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
             ['\eBayEnterprise\RetailOrderManagement\Api\Exception\UnsupportedOperation', '\eBayEnterprise\RetailOrderManagement\Api\Exception\UnsupportedOperation'],
76 76
             ['\eBayEnterprise\RetailOrderManagement\Api\Exception\UnsupportedHttpAction', '\eBayEnterprise\RetailOrderManagement\Api\Exception\UnsupportedHttpAction'],
77 77
             ['\Exception', '\Exception'],
78
-       ];
78
+        ];
79 79
     }
80 80
     /**
81 81
      * Any exceptions thrown by the SDK should be caught and converted to gift card
Please login to merge, or discard this patch.
src/app/code/community/EbayEnterprise/GiftCard/Test/Model/SessionTest.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
         $splStorage = new SplObjectStorage;
60 60
         $altStorage = new SplObjectStorage;
61 61
         return [
62
-            [$splStorage, $splStorage, null,],
62
+            [$splStorage, $splStorage, null, ],
63 63
             [$splStorage, $altStorage, $splStorage],
64 64
         ];
65 65
     }
Please login to merge, or discard this patch.
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -1,17 +1,17 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Copyright (c) 2013-2014 eBay Enterprise, Inc.
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the Open Software License (OSL 3.0)
8
- * that is bundled with this package in the file LICENSE.md.
9
- * It is also available through the world-wide-web at this URL:
10
- * http://opensource.org/licenses/osl-3.0.php
11
- *
12
- * @copyright   Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/)
13
- * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
14
- */
3
+     * Copyright (c) 2013-2014 eBay Enterprise, Inc.
4
+     *
5
+     * NOTICE OF LICENSE
6
+     *
7
+     * This source file is subject to the Open Software License (OSL 3.0)
8
+     * that is bundled with this package in the file LICENSE.md.
9
+     * It is also available through the world-wide-web at this URL:
10
+     * http://opensource.org/licenses/osl-3.0.php
11
+     *
12
+     * @copyright   Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/)
13
+     * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
14
+     */
15 15
 
16 16
 class EbayEnterprise_Tax_Test_Model_Total_Quote_Address_TaxTest extends EcomDev_PHPUnit_Test_Case
17 17
 {
Please login to merge, or discard this patch.