| Conditions | 2 |
| Paths | 2 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 33 | public function create(string $icon = null) |
||
| 34 | { |
||
| 35 | if(isset($icon)){ |
||
| 36 | copy(storage_path('app/'.$icon), storage_path('app/public/characteristics/'.$this->id.'.png')); |
||
| 37 | $this->icon = 'public/characteristics/'.$this->id.'.png'; |
||
| 38 | } |
||
| 39 | app(CharacteristicsRepository::class)->save($this); |
||
| 40 | } |
||
| 57 |