Skip to content

Commit 25c62b7

Browse files
Fix CS issues
1 parent 3b90f4a commit 25c62b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

classes/mutex/MySQLMutex.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public function lock()
6262
throw new LockAcquireException("An error occurred while acquiring the lock");
6363
}
6464

65-
throw new TimeoutException("The attempt timed out (for example, because another client has previously locked the name)");
65+
throw new TimeoutException("Timeout when acquiring lock.");
6666
}
6767

6868
public function unlock()
@@ -72,4 +72,4 @@ public function unlock()
7272
$this->name
7373
]);
7474
}
75-
}
75+
}

0 commit comments

Comments
 (0)