19 declare(strict_types=1);
29 return $steps[count($steps) - 1];
35 public function readStepNumbers(
string $step_class_name,
string $step_prefix): array
38 foreach (get_class_methods($step_class_name) as $method) {
39 if (stripos($method, $step_prefix) !== 0) {
43 $number = substr($method, strlen($step_prefix));
45 if (!preg_match(
"/^[1-9]\d*$/", $number)) {
46 throw new LogicException(
"Method $method seems to be a step but has an odd looking number");
49 $step_numbers[] = (
int) $number;
getLatestStepNumber(string $step_class_name, string $step_prefix)
Get the number of the latest database step in this class.
sort()
description: > Example for rendering a Sort Glyph.
readStepNumbers(string $step_class_name, string $step_prefix)
Get a list of all steps in this class.