generated from pestphp/pest-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
74a05e9
commit dabda51
Showing
5 changed files
with
140 additions
and
147 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,22 @@ | ||
<?php | ||
|
||
declare( strict_types=1 ); | ||
declare(strict_types=1); | ||
|
||
namespace Pest\TypeCoverage\Contracts; | ||
|
||
/** | ||
* @internal | ||
* | ||
* @final | ||
*/ | ||
interface Logger | ||
{ | ||
/** | ||
* @param string $outputPath | ||
* @param array<string, string|float|int|null> $pluginSettings | ||
*/ | ||
public function __construct( string $outputPath, array $pluginSettings ); | ||
|
||
/** | ||
* @param array<int, string> $uncoveredLines | ||
* @param array<int, string> $uncoveredLinesIgnored | ||
*/ | ||
public function append(string $path, array $uncoveredLines, array $uncoveredLinesIgnored, float $percentage):void; | ||
public function append(string $path, array $uncoveredLines, array $uncoveredLinesIgnored, float $percentage): void; | ||
|
||
public function output():void; | ||
/** | ||
* Outputs the coverage report. | ||
*/ | ||
public function output(): void; | ||
} |
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
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