Skip to content

Commit

Permalink
made some stuff private instead of just internal
Browse files Browse the repository at this point in the history
  • Loading branch information
konecnyjakub committed Dec 16, 2024
1 parent 393a965 commit a75a5b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
5 changes: 1 addition & 4 deletions src/ResultsFormatters/Console.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,7 @@
*/
final class Console extends AbstractResultsFormatter implements IConsoleAwareResultsFormatter
{
/**
* @internal
*/
public ConsoleColors $console;
private ConsoleColors $console;

/** @var array<string, string> */
private array $failures = [];
Expand Down
5 changes: 1 addition & 4 deletions src/ResultsFormatters/TestDox.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,7 @@
*/
final class TestDox extends AbstractResultsFormatter implements IConsoleAwareResultsFormatter
{
/**
* @internal
*/
public ConsoleColors $console;
private ConsoleColors $console;

public function setConsole(ConsoleColors $console): void
{
Expand Down

0 comments on commit a75a5b4

Please sign in to comment.