Home
last modified time | relevance | path

Searched refs:cronParts (Results 1 – 1 of 1) sorted by relevance

/plugin/combo/vendor/dragonmantank/cron-expression/src/Cron/
H A DCronExpression.php36 private $cronParts; variable in Cron\\CronExpression
128 $this->cronParts = preg_split('/\s/', $value, -1, PREG_SPLIT_NO_EMPTY);
129 if (count($this->cronParts) < 5) {
135 foreach ($this->cronParts as $position => $part) {
159 $this->cronParts[$position] = $value;
253 return implode(' ', $this->cronParts);
254 } elseif (array_key_exists($part, $this->cronParts)) {
255 return $this->cronParts[$part];