TYPO3 CMS  TYPO3_8-7
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 }