Passed
Pull Request — developer (#17179)
by Mariusz
29:27 queued 10:21
created
app/Integrations/Comarch/Config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@
 block discarded – undo
104 104
 	{
105 105
 		$dbCommand = \App\Db::getInstance('admin')->createCommand();
106 106
 		if (null !== $name) {
107
-			$data = ['name' => "{$type}_last_{$name}",	'value' => $id];
107
+			$data = ['name' => "{$type}_last_{$name}", 'value' => $id];
108 108
 		} else {
109 109
 			$data = ['name' => $type . '_start_date', 'value' => date('Y-m-d H:i:s')];
110 110
 		}
Please login to merge, or discard this patch.
app/Integrations/Comarch/Synchronizer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -464,7 +464,7 @@
 block discarded – undo
464 464
 	public function addToQueue(string $type, int $id): void
465 465
 	{
466 466
 		$data = ['server_id' => $this->config->get('id'),
467
-			'name' => $this->name, 'type' => $type,	'value' => $id,
467
+			'name' => $this->name, 'type' => $type, 'value' => $id,
468 468
 		];
469 469
 		$db = \App\Db::getInstance('admin');
470 470
 		if ((new \App\Db\Query())->from(\App\Integrations\Comarch::QUEUE_TABLE_NAME)
Please login to merge, or discard this patch.