| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 31 | public static function make(string $code, int $value, int $sortOrder, bool $isConsumable = false): Model |
||
| 32 | { |
||
| 33 | $attributes = [ |
||
| 34 | 'code' => $code, |
||
| 35 | 'value' => $value, |
||
| 36 | 'sort_order' => $sortOrder, |
||
| 37 | 'is_consumable' => $isConsumable, |
||
| 38 | ]; |
||
| 39 | |||
| 40 | return new self($attributes); |
||
| 41 | } |
||
| 42 | } |
||
| 43 |