Skip to content

Commit 7e1e5b2

Browse files
committed
fix coverage
1 parent cf17bbf commit 7e1e5b2

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
run: |
7171
composer config --no-plugins allow-plugins.infection/extension-installer true
7272
composer require infection/infection --update-with-all-dependencies
73-
vendor/bin/infection --ignore-msi-with-no-mutations --min-covered-msi=100 --min-msi=100 -s -j4 --only-covered
73+
vendor/bin/infection --ignore-msi-with-no-mutations --min-covered-msi=100 --min-msi=100 -s -j4
7474
- name: Run phpstan
7575
if: ${{ matrix.php-versions == 8.4 && matrix.operating-system == 'ubuntu-latest' }}
7676
run: |

src/Command/BaseTypedCommand.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
use Symfony\Component\Console\Input\InputInterface;
77
use Symfony\Component\Console\Output\OutputInterface;
88

9-
109
class_alias(
1110
PHP_VERSION_ID >= 70200
1211
? 'IonBazan\ComposerDiff\Command\TypedConfigureTrait'

src/Command/NotTypedConfigureTrait.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
namespace IonBazan\ComposerDiff\Command;
44

5+
/**
6+
* @codeCoverageIgnore
7+
*/
58
trait NotTypedConfigureTrait
69
{
710
/**

src/Command/TypedConfigureTrait.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
namespace IonBazan\ComposerDiff\Command;
44

5+
/**
6+
* @codeCoverageIgnore
7+
*/
58
trait TypedConfigureTrait
69
{
710
protected function configure(): void

0 commit comments

Comments
 (0)