Sha256: c6bc65eb3288810984aea4f2970a3391394d40895a642900c673995568d3014c
Contents?: true
Size: 562 Bytes
Versions: 42
Compression:
Stored size: 562 Bytes
Contents
<?php use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Command\LockableTrait; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; class FooLockCommand extends Command { use LockableTrait; protected function configure() { $this->setName('foo:lock'); } protected function execute(InputInterface $input, OutputInterface $output) { if (!$this->lock()) { return 1; } $this->release(); return 2; } }
Version data entries
42 entries across 42 versions & 1 rubygems
Version | Path |
---|---|
dependabot-composer-0.94.7 | helpers/vendor/symfony/console/Tests/Fixtures/FooLockCommand.php |
dependabot-composer-0.90.0 | helpers/vendor/symfony/console/Tests/Fixtures/FooLockCommand.php |