File: /var/www/admin.fixgini.com/vendor/pestphp/pest-plugin-mutate/src/Options/ParallelOption.php
<?php
declare(strict_types=1);
namespace Pest\Mutate\Options;
use Symfony\Component\Console\Input\InputOption;
class ParallelOption
{
final public const ARGUMENT = 'parallel';
public static function remove(): bool
{
return true;
}
public static function match(string $argument): bool
{
return $argument === sprintf('--%s', self::ARGUMENT);
}
public static function inputOption(): InputOption
{
return new InputOption(sprintf('--%s', self::ARGUMENT), null, InputOption::VALUE_NONE, '');
}
}