| Total Complexity | 2 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | class ParserShiftDefinition extends AbstractParser implements ParserInterface |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @return [] |
||
|
|
|||
| 23 | */ |
||
| 24 | 2 | protected function getProperties() |
|
| 25 | { |
||
| 26 | return [ |
||
| 27 | 2 | 'fromDay', |
|
| 28 | 2 | 'fromHour', |
|
| 29 | 2 | 'fromMinutte', |
|
| 30 | 2 | 'toDay', |
|
| 31 | 2 | 'toHour', |
|
| 32 | 2 | 'toMinutte', |
|
| 33 | 2 | 'shiftText', |
|
| 34 | 2 | 'fromDay2', |
|
| 35 | 2 | 'toDay2', |
|
| 36 | 2 | 'from', |
|
| 37 | 'to' |
||
| 38 | 2 | ]; |
|
| 39 | } |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @return EntityShiftDefinition |
||
| 43 | */ |
||
| 44 | 2 | protected function getEntity() |
|
| 47 | } |
||
| 48 | } |
||
| 49 |