Skip to content

Commit fc38f76

Browse files
committed
exclude AC-9157 for remodification according to PR comment & modefied Transaction.php
1 parent d92c6e8 commit fc38f76

File tree

3 files changed

+4
-10
lines changed

3 files changed

+4
-10
lines changed

app/code/Magento/GraphQlResolverCache/Observer/InvalidateGraphQlResolverCacheObserver.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,6 @@ public function execute(Observer $observer)
6363
return;
6464
}
6565

66-
if (($object instanceof \Magento\Cms\Model\Block
67-
|| $object instanceof \Magento\Cms\Model\Page)
68-
&& $object->getData('staging') !== null
69-
) {
70-
return;
71-
}
72-
7366
if (!$this->cacheState->isEnabled(GraphQlResolverCache::TYPE_IDENTIFIER)) {
7467
return;
7568
}

app/code/Magento/GraphQlResolverCache/composer.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
"require": {
66
"php": "~8.1.0||~8.2.0||~8.3.0",
77
"magento/framework": "*",
8-
"magento/module-graph-ql": "*",
9-
"magento/module-cms": "*"
8+
"magento/module-graph-ql": "*"
109
},
1110
"license": [
1211
"OSL-3.0",

app/code/Magento/Sales/Model/ResourceModel/Order/Payment/Transaction.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
* Copyright © Magento, Inc. All rights reserved.
44
* See COPYING.txt for license details.
55
*/
6+
declare(strict_types=1);
7+
68
namespace Magento\Sales\Model\ResourceModel\Order\Payment;
79

810
use Magento\Sales\Model\ResourceModel\EntityAbstract;
@@ -222,7 +224,7 @@ private function _getLoadByUniqueKeySelect($orderId, $paymentId, $txnId, $column
222224
*
223225
* @param int $orderId
224226
*/
225-
protected function getParentTxnId($orderId)
227+
private function getParentTxnId($orderId)
226228
{
227229
$connection = $this->getConnection();
228230
$select = $connection->select()->from(

0 commit comments

Comments
 (0)