| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 9 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 32 | 3 | public function buildFromProperty( Property $property ) { |
|
| 33 | 3 | $this->property = $property; |
|
| 34 | 3 | $this->simpleProperty = new SimpleProperty(); |
|
| 35 | |||
| 36 | 3 | $this->addIdLinks(); |
|
| 37 | |||
| 38 | 3 | $this->addLabel(); |
|
| 39 | 3 | $this->addDescription(); |
|
| 40 | 3 | $this->addAliases(); |
|
| 41 | |||
| 42 | 3 | $this->addType(); |
|
| 43 | |||
| 44 | 3 | return $this->simpleProperty; |
|
| 45 | } |
||
| 46 | |||
| 74 |