N°9144 Fix CodeStyle

This commit is contained in:
Timothee
2026-02-09 15:10:17 +01:00
parent 709a278df9
commit a2496f4e15
20 changed files with 38 additions and 39 deletions

View File

@@ -1,6 +1,7 @@
<?php
abstract class StepSequencer {
abstract class StepSequencer
{
public const OK = 1;
public const ERROR = 2;
public const WARNING = 3;
@@ -73,4 +74,4 @@ abstract class StepSequencer {
}
abstract public function ExecuteStep($sStep = '', $sComment = null);
}
}