| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 9 | 
| Code Lines | 7 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 63 | public function writeRectangleArray(ObjectWriter $objectWriter) | ||
| 64 |     { | ||
| 65 | $objectWriter->startArray(); | ||
| 66 | $objectWriter->writeNumber($this->x1); | ||
| 67 | $objectWriter->writeNumber($this->y1); | ||
| 68 | $objectWriter->writeNumber($this->x2); | ||
| 69 | $objectWriter->writeNumber($this->y2); | ||
| 70 | $objectWriter->endArray(); | ||
| 71 | } | ||
| 72 | } | ||
| 73 |