ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
interface.ilDatabaseUpdateStepExecutionLog.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
27{
31 public function started(string $class, int $step): void;
32
36 public function finished(string $class, int $step): void;
37
41 public function getLastStartedStep(string $class): int;
45 public function getLastFinishedStep(string $class): int;
46}
This logs the execution of database update steps.
getLastStartedStep(string $class)
Returns 0 as "first" step.
getLastFinishedStep(string $class)
Returns 0 as "first" step.
finished(string $class, int $step)
started(string $class, int $step)