Skip to content

Commit db7a448

Browse files
committed
Fix CI
1 parent 25e330e commit db7a448

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Kernel/Mnemonics/_irem.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public function execute(): void
2121

2222
$this->pushStack(
2323
new _Int(
24-
$leftOperand % $rightOperand
24+
$leftOperand % $rightOperand
2525
)
2626
);
2727
}

0 commit comments

Comments
 (0)