@@ -21,7 +21,7 @@ discard block |
||
| 21 | 21 | |
| 22 | 22 | // Mark the slug as deleted to avoid any conflict with newly created modules with the same slug. |
| 23 | 23 | $module->update([ |
| 24 | - 'slug' => $module->slug . $this->appendDeleteMarker(), |
|
| 24 | + 'slug' => $module->slug.$this->appendDeleteMarker(), |
|
| 25 | 25 | ]); |
| 26 | 26 | |
| 27 | 27 | $module->delete(); |
@@ -35,6 +35,6 @@ discard block |
||
| 35 | 35 | |
| 36 | 36 | private function appendDeleteMarker(): string |
| 37 | 37 | { |
| 38 | - return '_DELETED_' . time(); |
|
| 38 | + return '_DELETED_'.time(); |
|
| 39 | 39 | } |
| 40 | 40 | } |