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