Home
last modified time | relevance | path

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

/dports/net-mgmt/icingaweb2-module-x509/icingaweb2-module-x509-1.0.0-8-g39fd7e1/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];
/dports/www/elgg/elgg-3.3.23/vendor/mtdowling/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];
/dports/www/groupoffice/groupoffice-6.4.231-php-71/vendor/mtdowling/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];
/dports/www/tikiwiki/tiki-21.2/vendor_bundled/vendor/dragonmantank/cron-expression/src/Cron/
H A DCronExpression.php37 private $cronParts; variable in Cron\\CronExpression
129 $this->cronParts = preg_split('/\s/', $value, -1, PREG_SPLIT_NO_EMPTY);
130 if (count($this->cronParts) < 5) {
136 foreach ($this->cronParts as $position => $part) {
160 $this->cronParts[$position] = $value;
258 return implode(' ', $this->cronParts);
259 } elseif (array_key_exists($part, $this->cronParts)) {
260 return $this->cronParts[$part];
/dports/net-mgmt/librenms/librenms-vendor-21.5.1/dragonmantank/cron-expression/src/Cron/
H A DCronExpression.php51 private $cronParts; variable in Cron\\CronExpression
131 $this->cronParts = $split;
132 if (\count($this->cronParts) < 5) {
138 foreach ($this->cronParts as $position => $part) {
163 $this->cronParts[$position] = $value;
267 return implode(' ', $this->cronParts);
270 if (array_key_exists($part, $this->cronParts)) {
271 return $this->cronParts[$part];
285 return $this->cronParts;