We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f87ce8a commit 27b6c57Copy full SHA for 27b6c57
1 file changed
src/FileLock.php
@@ -165,7 +165,7 @@ public function isLocked()
165
public function obtainLock()
166
{
167
$tries = 0;
168
- $waitClosure = $this->getWaitClosuure();
+ $waitClosure = $this->getWaitClosure();
169
do {
170
if ($this->doLock()->isLocked()) {
171
return $this;
@@ -254,7 +254,7 @@ public function setLockWait($float)
254
/**
255
* @return \Closure
256
*/
257
- protected function getWaitClosuure()
+ protected function getWaitClosure()
258
259
if ($this->lockWait > 300) {
260
$wait = (int) $this->lockWait;
0 commit comments