‪TYPO3CMS  9.5
NormalizeCommandAccessibleProxy.php
Go to the documentation of this file.
1 <?php
3 
4 /*
5  * This file is part of the TYPO3 CMS project.
6  *
7  * It is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU General Public License, either version 2
9  * of the License, or any later version.
10  *
11  * For the full copyright and license information, please read the
12  * LICENSE.txt file that was distributed with this source code.
13  *
14  * The TYPO3 project - inspiring people to share!
15  */
16 
18 
23 {
24  public static function ‪convertKeywordsToCronCommand($cronCommand)
25  {
26  return parent::convertKeywordsToCronCommand($cronCommand);
27  }
28 
29  public static function ‪normalizeFields($cronCommand)
30  {
31  return parent::normalizeFields($cronCommand);
32  }
33 
34  public static function ‪normalizeMonthAndWeekdayField($expression, $isMonthField = true)
35  {
36  return parent::normalizeMonthAndWeekdayField($expression, $isMonthField);
37  }
38 
39  public static function ‪normalizeIntegerField($expression, $lowerBound = 0, $upperBound = 59)
40  {
41  return parent::normalizeIntegerField($expression, $lowerBound, $upperBound);
42  }
43 
44  public static function ‪splitFields($cronCommand)
45  {
46  return parent::splitFields($cronCommand);
47  }
48 
49  public static function ‪convertRangeToListOfValues($range)
50  {
51  return parent::convertRangeToListOfValues($range);
52  }
53 
54  public static function ‪reduceListOfValuesByStepValue($stepExpression)
55  {
56  return parent::reduceListOfValuesByStepValue($stepExpression);
57  }
58 
59  public static function ‪normalizeMonthAndWeekday($expression, $isMonth = true)
60  {
61  return parent::normalizeMonthAndWeekday($expression, $isMonth);
62  }
63 
64  public static function ‪normalizeMonth($month)
65  {
66  return parent::normalizeMonth($month);
67  }
68 
69  public static function ‪normalizeWeekday($weekday)
70  {
71  return parent::normalizeWeekday($weekday);
72  }
73 }
‪TYPO3\CMS\Scheduler\Tests\Unit\CronCommand\AccessibleProxies
Definition: NormalizeCommandAccessibleProxy.php:2
‪TYPO3\CMS\Scheduler\Tests\Unit\CronCommand\AccessibleProxies\NormalizeCommandAccessibleProxy
Definition: NormalizeCommandAccessibleProxy.php:23
‪TYPO3\CMS\Scheduler\Tests\Unit\CronCommand\AccessibleProxies\NormalizeCommandAccessibleProxy\normalizeMonthAndWeekdayField
‪static normalizeMonthAndWeekdayField($expression, $isMonthField=true)
Definition: NormalizeCommandAccessibleProxy.php:34
‪TYPO3\CMS\Scheduler\Tests\Unit\CronCommand\AccessibleProxies\NormalizeCommandAccessibleProxy\normalizeFields
‪static normalizeFields($cronCommand)
Definition: NormalizeCommandAccessibleProxy.php:29
‪TYPO3\CMS\Scheduler\CronCommand\NormalizeCommand
Definition: NormalizeCommand.php:27
‪TYPO3\CMS\Scheduler\Tests\Unit\CronCommand\AccessibleProxies\NormalizeCommandAccessibleProxy\convertRangeToListOfValues
‪static convertRangeToListOfValues($range)
Definition: NormalizeCommandAccessibleProxy.php:49
‪TYPO3\CMS\Scheduler\Tests\Unit\CronCommand\AccessibleProxies\NormalizeCommandAccessibleProxy\reduceListOfValuesByStepValue
‪static reduceListOfValuesByStepValue($stepExpression)
Definition: NormalizeCommandAccessibleProxy.php:54
‪TYPO3\CMS\Scheduler\Tests\Unit\CronCommand\AccessibleProxies\NormalizeCommandAccessibleProxy\normalizeIntegerField
‪static normalizeIntegerField($expression, $lowerBound=0, $upperBound=59)
Definition: NormalizeCommandAccessibleProxy.php:39
‪TYPO3\CMS\Scheduler\Tests\Unit\CronCommand\AccessibleProxies\NormalizeCommandAccessibleProxy\normalizeMonthAndWeekday
‪static normalizeMonthAndWeekday($expression, $isMonth=true)
Definition: NormalizeCommandAccessibleProxy.php:59
‪TYPO3\CMS\Scheduler\Tests\Unit\CronCommand\AccessibleProxies\NormalizeCommandAccessibleProxy\normalizeMonth
‪static normalizeMonth($month)
Definition: NormalizeCommandAccessibleProxy.php:64
‪TYPO3\CMS\Scheduler\Tests\Unit\CronCommand\AccessibleProxies\NormalizeCommandAccessibleProxy\convertKeywordsToCronCommand
‪static convertKeywordsToCronCommand($cronCommand)
Definition: NormalizeCommandAccessibleProxy.php:24
‪TYPO3\CMS\Scheduler\Tests\Unit\CronCommand\AccessibleProxies\NormalizeCommandAccessibleProxy\splitFields
‪static splitFields($cronCommand)
Definition: NormalizeCommandAccessibleProxy.php:44
‪TYPO3\CMS\Scheduler\Tests\Unit\CronCommand\AccessibleProxies\NormalizeCommandAccessibleProxy\normalizeWeekday
‪static normalizeWeekday($weekday)
Definition: NormalizeCommandAccessibleProxy.php:69