Skip to content

Merge pull request #170 from shopware/dependabot/github_actions/all-d… #243

Merge pull request #170 from shopware/dependabot/github_actions/all-d…

Merge pull request #170 from shopware/dependabot/github_actions/all-d… #243

Triggered via push February 17, 2025 09:21
Status Success
Total duration 1m 10s
Artifacts

php.yml

on: push
Fit to window
Zoom out
Zoom in

Annotations

3 warnings
infection: src/Command/ManifestGenerateCommand.php#L35
Escaped Mutant for Mutator "LogicalOr": @@ @@ protected function execute(InputInterface $input, OutputInterface $output): int { $io = new SymfonyStyle($input, $output); - if ($this->appUrl === null || $this->appSecret === null || $this->environment === null || $this->projectDir === null) { + if ($this->appUrl === null && $this->appSecret === null || $this->environment === null || $this->projectDir === null) { $io->error('Missing environment variables'); return Command::FAILURE; }
infection: src/Command/ManifestGenerateCommand.php#L35
Escaped Mutant for Mutator "LogicalOr": @@ @@ protected function execute(InputInterface $input, OutputInterface $output): int { $io = new SymfonyStyle($input, $output); - if ($this->appUrl === null || $this->appSecret === null || $this->environment === null || $this->projectDir === null) { + if (($this->appUrl === null || $this->appSecret === null) && $this->environment === null || $this->projectDir === null) { $io->error('Missing environment variables'); return Command::FAILURE; }
infection: src/Command/ManifestGenerateCommand.php#L35
Escaped Mutant for Mutator "LogicalOr": @@ @@ protected function execute(InputInterface $input, OutputInterface $output): int { $io = new SymfonyStyle($input, $output); - if ($this->appUrl === null || $this->appSecret === null || $this->environment === null || $this->projectDir === null) { + if (($this->appUrl === null || $this->appSecret === null || $this->environment === null) && $this->projectDir === null) { $io->error('Missing environment variables'); return Command::FAILURE; }