Skip to content

Commit e533b9b

Browse files
author
Alex Paliarush
committed
MAGETWO-65444: Add @api annotation to Tax module
1 parent 258d44e commit e533b9b

File tree

11 files changed

+41
-0
lines changed

11 files changed

+41
-0
lines changed

app/code/Magento/Tax/Helper/Data.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
* @SuppressWarnings(PHPMD.TooManyFields)
2525
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
2626
* @codingStandardsIgnoreFile
27+
* @api
2728
*/
2829
class Data extends \Magento\Framework\App\Helper\AbstractHelper
2930
{

app/code/Magento/Tax/view/frontend/web/js/view/checkout/cart/totals/grand-total.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
* See COPYING.txt for license details.
44
*/
55

6+
/**
7+
* @api
8+
*/
9+
610
define([
711
'Magento_Tax/js/view/checkout/summary/grand-total'
812
], function (Component) {

app/code/Magento/Tax/view/frontend/web/js/view/checkout/cart/totals/shipping.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
* See COPYING.txt for license details.
44
*/
55

6+
/**
7+
* @api
8+
*/
9+
610
define([
711
'Magento_Tax/js/view/checkout/summary/shipping',
812
'Magento_Checkout/js/model/quote'

app/code/Magento/Tax/view/frontend/web/js/view/checkout/cart/totals/tax.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
* See COPYING.txt for license details.
44
*/
55

6+
/**
7+
* @api
8+
*/
9+
610
define([
711
'Magento_Tax/js/view/checkout/summary/tax',
812
'Magento_Checkout/js/model/totals'

app/code/Magento/Tax/view/frontend/web/js/view/checkout/minicart/subtotal/totals.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
* See COPYING.txt for license details.
44
*/
55

6+
/**
7+
* @api
8+
*/
9+
610
define([
711
'ko',
812
'uiComponent',

app/code/Magento/Tax/view/frontend/web/js/view/checkout/shipping_method/price.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
* See COPYING.txt for license details.
44
*/
55

6+
/**
7+
* @api
8+
*/
9+
610
define([
711
'uiComponent',
812
'Magento_Checkout/js/model/quote',

app/code/Magento/Tax/view/frontend/web/js/view/checkout/summary/grand-total.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
* See COPYING.txt for license details.
44
*/
55

6+
/**
7+
* @api
8+
*/
9+
610
define([
711
'Magento_Checkout/js/view/summary/abstract-total',
812
'Magento_Checkout/js/model/quote',

app/code/Magento/Tax/view/frontend/web/js/view/checkout/summary/item/details/subtotal.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
* See COPYING.txt for license details.
44
*/
55

6+
/**
7+
* @api
8+
*/
9+
610
define([
711
'Magento_Checkout/js/view/summary/item/details/subtotal'
812
], function (subtotal) {

app/code/Magento/Tax/view/frontend/web/js/view/checkout/summary/shipping.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
* See COPYING.txt for license details.
44
*/
55

6+
/**
7+
* @api
8+
*/
9+
610
define([
711
'jquery',
812
'Magento_Checkout/js/view/summary/shipping',

app/code/Magento/Tax/view/frontend/web/js/view/checkout/summary/subtotal.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
* See COPYING.txt for license details.
44
*/
55

6+
/**
7+
* @api
8+
*/
9+
610
define([
711
'Magento_Checkout/js/view/summary/abstract-total',
812
'Magento_Checkout/js/model/quote'

0 commit comments

Comments
 (0)