Skip to content

Commit 27b6c57

Browse files
committed
typo fix
1 parent f87ce8a commit 27b6c57

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/FileLock.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ public function isLocked()
165165
public function obtainLock()
166166
{
167167
$tries = 0;
168-
$waitClosure = $this->getWaitClosuure();
168+
$waitClosure = $this->getWaitClosure();
169169
do {
170170
if ($this->doLock()->isLocked()) {
171171
return $this;
@@ -254,7 +254,7 @@ public function setLockWait($float)
254254
/**
255255
* @return \Closure
256256
*/
257-
protected function getWaitClosuure()
257+
protected function getWaitClosure()
258258
{
259259
if ($this->lockWait > 300) {
260260
$wait = (int) $this->lockWait;

0 commit comments

Comments
 (0)