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