Skip to content

Commit 4aadde4

Browse files
committed
Fix statict
1 parent ca1a374 commit 4aadde4

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

app/code/Magento/AsynchronousOperations/Model/OperationManagement.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
use Magento\Framework\EntityManager\EntityManager;
1111

1212
/**
13-
* Class OperationManagement
13+
* Class for managing Bulk Operations
1414
*/
1515
class OperationManagement implements \Magento\Framework\Bulk\OperationManagementInterface
1616
{

app/code/Magento/AsynchronousOperations/Model/ResourceModel/Operation.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
namespace Magento\AsynchronousOperations\Model\ResourceModel;
88

99
/**
10-
* Class Operation
10+
* Resource class for Bulk Operations
1111
*/
1212
class Operation extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb
1313
{

app/code/Magento/AsynchronousOperations/Model/ResourceModel/Operation/OperationRepository.php

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,11 @@ public function __construct(
6767
}
6868

6969
/**
70-
* @param $topicName
71-
* @param $entityParams
72-
* @param $groupId
70+
* Creating topic for publishing
71+
*
72+
* @param string $topicName
73+
* @param mixed $entityParams
74+
* @param string $groupId
7375
* @return mixed
7476
*/
7577
public function createByTopic($topicName, $entityParams, $groupId)

app/code/Magento/AsynchronousOperations/Model/SaveMultipleOperations.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,4 @@ public function execute(array $operations): void
5050
throw new CouldNotSaveException(__($exception->getMessage()));
5151
}
5252
}
53-
5453
}

0 commit comments

Comments
 (0)