Skip to content

Commit a1030dc

Browse files
committed
ACPT-1550: Stabilize PR on app server branch
1 parent 4c6d478 commit a1030dc

File tree

9 files changed

+38
-9
lines changed

9 files changed

+38
-9
lines changed

app/code/Magento/Backup/Model/Fs/Collection.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ public function __construct(
7373
*
7474
* @return void
7575
*/
76-
private function initialize() {
76+
private function initialize()
77+
{
7778
// set collection specific params
7879
$extensions = $this->_backupData->getExtensions();
7980
foreach ($extensions as $value) {

app/code/Magento/Customer/Model/ResourceModel/Group/Grid/Collection.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ protected function _initSelect()
9191
}
9292

9393
/**
94+
* Return aggregations
9495
*
9596
* @return AggregationInterface
9697
*/
@@ -100,6 +101,7 @@ public function getAggregations()
100101
}
101102

102103
/**
104+
* Set aggregations
103105
*
104106
* @param AggregationInterface $aggregations
105107
* @return $this

app/code/Magento/Quote/Model/Quote/Item/CartItemProcessorsPool.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ public function __construct(ConfigInterface $objectManagerConfig)
3636
}
3737

3838
/**
39+
* Get cart item processors.
3940
*
4041
* @return CartItemProcessorInterface[]
4142
* @deprecated 100.1.0

app/code/Magento/SalesSequence/Model/Builder.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ public function __construct(
108108
}
109109

110110
/**
111+
* Set entity type data
111112
*
112113
* @param string $entityType
113114
* @return $this
@@ -119,6 +120,7 @@ public function setEntityType($entityType)
119120
}
120121

121122
/**
123+
* Set store id data
122124
*
123125
* @param int $storeId
124126
* @return $this
@@ -130,6 +132,7 @@ public function setStoreId($storeId)
130132
}
131133

132134
/**
135+
* Set prefix data
133136
*
134137
* @param string $prefix
135138
* @return $this
@@ -141,6 +144,7 @@ public function setPrefix($prefix)
141144
}
142145

143146
/**
147+
* Set suffix data
144148
*
145149
* @param string $suffix
146150
* @return $this
@@ -152,6 +156,7 @@ public function setSuffix($suffix)
152156
}
153157

154158
/**
159+
* Set start value data
155160
*
156161
* @param int $startValue
157162
* @return $this
@@ -163,6 +168,7 @@ public function setStartValue($startValue)
163168
}
164169

165170
/**
171+
* Set step data
166172
*
167173
* @param int $step
168174
* @return $this
@@ -174,6 +180,7 @@ public function setStep($step)
174180
}
175181

176182
/**
183+
* Set max value data
177184
*
178185
* @param int $maxValue
179186
* @return $this
@@ -185,6 +192,7 @@ public function setMaxValue($maxValue)
185192
}
186193

187194
/**
195+
* Set warning value data
188196
*
189197
* @param int $warningValue
190198
* @return $this

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

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -575,6 +575,8 @@ public function getBaseTotalTaxAppliedForWeeeTax($item)
575575
}
576576

577577
/**
578+
* Get invoiced wee amount
579+
*
578580
* @param OrderItem $orderItem
579581
* @return float
580582
*/
@@ -592,6 +594,7 @@ public function getWeeeAmountInvoiced($orderItem)
592594
}
593595

594596
/**
597+
* Get invoiced base wee amount
595598
*
596599
* @param OrderItem $orderItem
597600
* @return float
@@ -610,6 +613,7 @@ public function getBaseWeeeAmountInvoiced($orderItem)
610613
}
611614

612615
/**
616+
* Get invoiced wee tax amount
613617
*
614618
* @param OrderItem $orderItem
615619
* @return float
@@ -628,6 +632,7 @@ public function getWeeeTaxAmountInvoiced($orderItem)
628632
}
629633

630634
/**
635+
* Get invoiced base wee tax amount
631636
*
632637
* @param OrderItem $orderItem
633638
* @return float
@@ -646,6 +651,7 @@ public function getBaseWeeeTaxAmountInvoiced($orderItem)
646651
}
647652

648653
/**
654+
* Get refunded wee amount
649655
*
650656
* @param OrderItem $orderItem
651657
* @return float
@@ -664,6 +670,7 @@ public function getWeeeAmountRefunded($orderItem)
664670
}
665671

666672
/**
673+
* Get refunded base wee amount
667674
*
668675
* @param OrderItem $orderItem
669676
* @return float
@@ -682,6 +689,7 @@ public function getBaseWeeeAmountRefunded($orderItem)
682689
}
683690

684691
/**
692+
* Get refunded wee tax amount
685693
*
686694
* @param OrderItem $orderItem
687695
* @return float
@@ -700,6 +708,7 @@ public function getWeeeTaxAmountRefunded($orderItem)
700708
}
701709

702710
/**
711+
* Get refunded base wee tax amount
703712
*
704713
* @param OrderItem $orderItem
705714
* @return float
@@ -742,8 +751,8 @@ public function getTotalAmounts($items, $store = null)
742751
* Returns the base total amount of FPT across all items.
743752
*
744753
* Used for displaying the FPT totals line item.
745-
* @param QuoteAbstractItem[] $items
746-
* @param mixed $store
754+
* @param QuoteAbstractItem[] $items
755+
* @param mixed $store
747756
* @return float
748757
* @since 100.1.0
749758
*/

dev/tests/integration/testsuite/Magento/GraphQl/App/State/Collector.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616
class Collector
1717
{
1818
/**
19-
* @var array
19+
* @var array $skipListFromConstructed
2020
*/
2121
private readonly array $skipListFromConstructed;
2222

2323
/**
24-
* @var array
24+
* @var array $skipListBetweenRequests
2525
*/
2626
private readonly array $skipListBetweenRequests;
2727

@@ -156,7 +156,7 @@ public function getPropertiesConstructedAndCurrent(): array
156156
* @param int $recursionLevel
157157
* @return CollectedObject
158158
* @SuppressWarnings(PHPMD.CyclomaticComplexity)
159-
* @SuppressWarnings (PHPMD.NPathComplexity)
159+
* @SuppressWarnings(PHPMD.NPathComplexity)
160160
*/
161161
public function getPropertiesFromObject(
162162
object $object,

dev/tests/integration/testsuite/Magento/GraphQl/App/State/Comparator.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ class Comparator
2222
*/
2323
private array $objectsStateAfter = [];
2424

25+
/**
26+
* @param Collector $collector
27+
* @param SkipListAndFilterList $skipListAndFilterList
28+
*/
2529
public function __construct(
2630
private readonly Collector $collector,
2731
private readonly SkipListAndFilterList $skipListAndFilterList

dev/tests/integration/testsuite/Magento/GraphQl/App/State/DynamicFactoryDecorator.php

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,14 @@ class DynamicFactoryDecorator extends Developer implements ResetAfterRequestInte
2020
/** @var WeakMap $weakMap Where CollectedObject is stored after object is created by us */
2121
private WeakMap $weakMap;
2222

23-
/** @var ObjectManager $objectManager */
23+
/**
24+
* @var ObjectManager $objectManager
25+
*/
2426
private readonly Collector $collector;
2527

26-
/** @var array $skipList List of classes to skip */
28+
/**
29+
* @var array $skipList List of classes to skip
30+
*/
2731
private readonly array $skipList;
2832

2933
/**

lib/internal/Magento/Framework/Cache/Frontend/Adapter/Zend.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ public function clean($mode = \Zend_Cache::CLEANING_MODE_ALL, array $tags = [])
104104
}
105105

106106
/**
107-
* @inheritdoc}
107+
* @inheritdoc
108108
*/
109109
public function getBackend()
110110
{

0 commit comments

Comments
 (0)