Skip to content

Commit 0bb04d3

Browse files
committed
Pint Fixes
1 parent 12d3a52 commit 0bb04d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Http/Controllers/LockRequestController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public function unlock($lockRequestID)
1515
$modelLock = ModelLock::findOrFail($lockRequestID);
1616
if (isset($modelLock->user_id)) {
1717
if ($modelLock->user_id == Auth::id()) {
18-
$modelLock->delete();
18+
$modelLock->delete(); //delees
1919
}
2020
}
2121
} catch (\Illuminate\Database\Eloquent\ModelNotFoundException $e) {

0 commit comments

Comments
 (0)