| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | public function toArray($keyType = TableMap::TYPE_PHPNAME, $includeLazyLoadColumns = true, $alreadyDumpedObjects = array(), $includeForeignObjects = false) |
||
| 24 | { |
||
| 25 | $result = parent::toArray($keyType, $includeLazyLoadColumns, $alreadyDumpedObjects, $includeForeignObjects); |
||
| 26 | $result["dayFormated"] = $this->getDayFormated(); |
||
| 27 | $result["beginFormated"] = $this->getBegin("H:i"); |
||
| 28 | $result["endFormated"] = $this->getEnd("H:i"); |
||
| 29 | $result["periodBeginFormated"] = $this->getPeriodBegin("Y-m-d"); |
||
| 30 | $result["periodEndFormated"] = $this->getPeriodEnd("Y-m-d"); |
||
| 31 | |||
| 32 | return $result; |
||
| 33 | } |
||
| 34 | |||
| 40 |