CronLingo\CronLingo::fromExpression PHP Méthode

fromExpression() public static méthode

public static fromExpression ( $string ) : string
$string
Résultat string
    public static function fromExpression($string)
    {
        return self::getParser()->parse($string);
    }

Usage Example

Exemple #1
0
 public function testCron()
 {
     $this->assertInternalType('string', \CronLingo\CronLingo::fromExpression('Every day at midnight'));
 }