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