Начало разработки обучения.

This commit is contained in:
2023-01-10 23:39:11 +01:00
parent 23a2de0d17
commit 220d965c01
8 changed files with 263 additions and 0 deletions
@@ -0,0 +1,18 @@
<?php
namespace DarksLight2\Training;
use Exception;
class TrainingException extends Exception
{
public static function alreadyRegistered(): self
{
return new self("The steps have been registered before");
}
public static function noRenderingFile(): self
{
return new self("Rendering file missing");
}
}