implement first version of collision checks

This commit is contained in:
ma0048
2026-05-26 14:09:58 +02:00
parent 24a0e74281
commit 9ac9804563
21 changed files with 1559 additions and 36 deletions
+10
View File
@@ -0,0 +1,10 @@
<?php
interface ICollisionCheck
{
public function getName();
public function check($data);
public function checkAll($kalender_ids);
}