Skip to content

Commit 7488d08

Browse files
christoph2497Thomas-Gelf
authored andcommitted
fix linting issues
1 parent 8eaee93 commit 7488d08

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

library/Eventtracker/Modifier/ModifierChain.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public function addModifier(Modifier $modifier, $propertyName)
7070
}
7171

7272
public function replaceModifier(Modifier $modifier, $propertyName, $row)
73-
{;
73+
{
7474
$this->modifiers[$row] = [$propertyName, $modifier];
7575
}
7676

library/Eventtracker/Web/Form/ChannelRuleForm.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ public function editRow(int $row, string $compareChecksum)
5151
$this->populate(['modifyProperty' => $modifier[0], 'modifierImplementation' => $modifier[1]->getName()]);
5252
$this->populate((array) $modifier[1]->getSettings()->jsonSerialize());
5353
} else {
54-
throw new \Exception('Checksum doesn\'t not match checksum from url: ' . $compareChecksum . ' != ' . $this->modifierChain->getShortChecksum());
54+
throw new \Exception('Checksum doesn\'t not match checksum from url: '
55+
. $compareChecksum . ' != ' . $this->modifierChain->getShortChecksum());
5556
}
5657
}
5758

0 commit comments

Comments
 (0)