コード例 #1
0
ファイル: When.php プロジェクト: solleer/framework
 public function freq($frequency)
 {
     if (Valid::freq($frequency)) {
         $this->freq = strtolower($frequency);
         return $this;
     }
     throw new \InvalidArgumentException("freq: Accepts " . rtrim(implode(Valid::$frequencies, ", "), ","));
 }