| Conditions | 7 |
| Paths | 12 |
| Total Lines | 18 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 40 | public function init() |
||
| 41 | { |
||
| 42 | parent::init(); |
||
| 43 | |||
| 44 | if ($this->has('in')) { |
||
|
|
|||
| 45 | $ins = $this->__get('in'); |
||
| 46 | if (!empty($ins)) { |
||
| 47 | foreach ($ins as $index => $property) { |
||
| 48 | $this->in[] = new PropertySpecification($property); |
||
| 49 | } |
||
| 50 | } |
||
| 51 | } |
||
| 52 | |||
| 53 | if ($this->has('out')) { |
||
| 54 | $outs = $this->__get('out'); |
||
| 55 | if (!empty($outs)) { |
||
| 56 | foreach ($outs as $index => $property) { |
||
| 57 | $this->out[] = new PropertySpecification($property); |
||
| 58 | } |
||
| 79 |