generated from worksome/package-skeleton-laravel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from worksome/feature/exclude-nodes
feat: add support for excluding nodes
- Loading branch information
Showing
3 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Worksome\PestGraphqlCoverage; | ||
|
||
final class Config | ||
{ | ||
/** @var array<string, mixed> */ | ||
private static array $ignoredNodes = []; | ||
|
||
public static function new(): self | ||
{ | ||
return new self(); | ||
} | ||
|
||
/** @param array<string> $ignoredNodes */ | ||
public function ignore(array $ignoredNodes): self | ||
{ | ||
self::$ignoredNodes = array_merge(self::$ignoredNodes, array_flip($ignoredNodes)); | ||
|
||
return $this; | ||
} | ||
|
||
/** @return array<string, mixed> */ | ||
public static function ignoredNodes(): array | ||
{ | ||
return self::$ignoredNodes; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters