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 36183f4 commit 4992b19Copy full SHA for 4992b19
src/WithoutOverlapping.php
@@ -2,15 +2,15 @@
2
3
namespace Illuminated\Console;
4
5
-use Illuminated\Console\Overlapping\Preventer;
+use Illuminated\Console\Overlapping\Mutex;
6
use Symfony\Component\Console\Input\InputInterface;
7
use Symfony\Component\Console\Output\OutputInterface;
8
9
trait WithoutOverlapping
10
{
11
protected function execute(InputInterface $input, OutputInterface $output)
12
13
- $preventer = new Preventer($this);
+ $mutex = new Mutex($this);
14
15
return parent::execute($input, $output);
16
}
0 commit comments