Files

16 lines
394 B
PHP

<?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.');
}
}