Skip to content

Commit 6a82084

Browse files
committed
ICM: Fixed according to recent changes.
1 parent e6efa17 commit 6a82084

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Mutex.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ private function strategy()
2121
return $this->strategy;
2222
}
2323

24-
switch ($this->command->getOverlappingStrategy()) {
25-
case 'database':
26-
return new DatabaseStrategy();
24+
switch ($this->command->getMutexStrategy()) {
25+
case 'mysql':
26+
break;
2727

2828
case 'file':
2929
default:
30-
return new FileStrategy();
30+
break;
3131
}
3232
}
3333
}

0 commit comments

Comments
 (0)