| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 50 | public function create() |
||
| 51 | { |
||
| 52 | $types = $this->field->getTypes(); |
||
| 53 | $widgets = $this->field->getWidgetTypes(); |
||
| 54 | |||
| 55 | $field = array( |
||
| 56 | 'type' => array_rand($types), |
||
| 57 | 'widget' => array_rand($widgets), |
||
| 58 | 'title' => $this->faker->text(50), |
||
| 59 | 'weight' => $this->faker->numberBetween(0, 20) |
||
| 60 | ); |
||
| 61 | |||
| 62 | return (bool) $this->field->add($field); |
||
| 63 | } |
||
| 64 | |||
| 66 |