Trigger, Action 역할 재정의

This commit is contained in:
2018-10-01 02:02:30 +09:00
parent 731a6e9587
commit 89ecbe34ed
70 changed files with 372 additions and 262 deletions
+9
View File
@@ -0,0 +1,9 @@
<?php
namespace sammo;
interface iObjectTrigger{
public function getPriority():int;
public function action(?array $env=null, $arg=null):?array;
public function getUniqueID():string;
}
?>