| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | private function parseJoining() |
||
| 30 | { |
||
| 31 | $joiningGroup = new JoiningGroup($this->getAttribute(self::ATTR_JOINING_GROUP)); |
||
| 32 | $joiningType = new JoiningType($this->getAttribute(self::ATTR_JOINING_TYPE)); |
||
| 33 | $joinControl = $this->getBoolAttribute(self::ATTR_JOIN_CONTROL); |
||
| 34 | |||
| 35 | return new Joining($joiningGroup, $joiningType, $joinControl); |
||
| 36 | } |
||
| 37 | } |