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