시나리오용 EventEngine.... 틀만 완성!

This commit is contained in:
2018-03-28 02:45:44 +09:00
parent 0ad8db5a63
commit a03eac6f2a
11 changed files with 299 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
<?php
namespace sammo\Event\Condition;
class Interval extends sammo\Event\Condition{
//TODO:구현
public function __construct(...$args){
throw new \BadMethodCallException('Not Yet Implmented.');
//from Year, from Month, Interval, to Year, to Month
}
public function eval($env=null){
throw new \BadMethodCallException('Not Yet Implmented.');
}
}