Skip to content

Commit 4992b19

Browse files
committed
Preventer renamed to Mutex.
1 parent 36183f4 commit 4992b19

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/WithoutOverlapping.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
namespace Illuminated\Console;
44

5-
use Illuminated\Console\Overlapping\Preventer;
5+
use Illuminated\Console\Overlapping\Mutex;
66
use Symfony\Component\Console\Input\InputInterface;
77
use Symfony\Component\Console\Output\OutputInterface;
88

99
trait WithoutOverlapping
1010
{
1111
protected function execute(InputInterface $input, OutputInterface $output)
1212
{
13-
$preventer = new Preventer($this);
13+
$mutex = new Mutex($this);
1414

1515
return parent::execute($input, $output);
1616
}

0 commit comments

Comments
 (0)