We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40697aa commit d11c2c3Copy full SHA for d11c2c3
src/Mutex.php
@@ -17,7 +17,7 @@ public function __construct(Command $command)
17
{
18
$this->command = $command;
19
$this->strategy = $this->strategy();
20
- $this->ninja = new Ninja('test', $this->strategy);
+ $this->ninja = new Ninja($command->getMutexName(), $this->strategy);
21
}
22
23
private function strategy()
@@ -41,7 +41,7 @@ private function strategy()
41
42
case 'file':
43
default:
44
- return new FlockLock(storage_path('framework'));
+ return new FlockLock(storage_path('app'));
45
46
47
0 commit comments