| Conditions | 2 | 
| Paths | 2 | 
| Total Lines | 10 | 
| Code Lines | 6 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 1 | 
| 1 | <?php | ||
| 18 | public function build() | ||
| 19 |     { | ||
| 20 | $this->iterateFixture(); | ||
| 21 | $defaultData = $this->_getMageModelData() ? $this->_getMageModelData() : []; | ||
| 22 | $mergedData = array_merge($defaultData, $this->_getFixtureAttributes()); | ||
| 23 | |||
| 24 | $this->_getMageModel()->setData($mergedData); | ||
| 25 | |||
| 26 | return $this->_saveFixture(); | ||
| 27 | } | ||
| 28 | } | ||
| 29 |