Skip to content

Commit 3c9120d

Browse files
committed
Fix tests
1 parent 6dd8b9a commit 3c9120d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Output/AnsiColorMode.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,28 +11,28 @@
1111

1212
namespace Symfony\Component\Console\Output;
1313

14-
use Symfony\Component\Asset\Exception\InvalidArgumentException;
14+
use Symfony\Component\Console\Exception\InvalidArgumentException;
1515

1616
/**
1717
* @author Fabien Potencier <[email protected]>
1818
* @author Julien Boudry <[email protected]>
1919
*/
2020
enum AnsiColorMode
2121
{
22-
/**
22+
/*
2323
* Classical 4-bit Ansi colors, including 8 classical colors and 8 bright color. Output syntax is "ESC[${foreGroundColorcode};${backGroundColorcode}m"
2424
* Must be compatible with all terminals and it's the minimal version supported.
2525
*/
2626
case Ansi4;
2727

28-
/**
28+
/*
2929
* 8-bit Ansi colors (240 differents colors + 16 duplicate color codes, ensuring backward compatibility).
3030
* Output syntax is: "ESC[38;5;${foreGroundColorcode};48;5;${backGroundColorcode}m"
3131
* Should be compatible with most terminals.
3232
*/
3333
case Ansi8;
3434

35-
/**
35+
/*
3636
* 24-bit Ansi colors (RGB).
3737
* Output syntax is: "ESC[38;2;${foreGroundColorcodeRed};${foreGroundColorcodeGreen};${foreGroundColorcodeBlue};48;2;${backGroundColorcodeRed};${backGroundColorcodeGreen};${backGroundColorcodeBlue}m"
3838
* May be compatible with many modern terminals.

Tests/Output/AnsiColorModeTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace Symfony\Component\Console\Tests\Output;
1313

1414
use PHPUnit\Framework\TestCase;
15-
use Symfony\Component\Asset\Exception\InvalidArgumentException;
15+
use Symfony\Component\Console\Exception\InvalidArgumentException;
1616
use Symfony\Component\Console\Output\AnsiColorMode;
1717

1818
class AnsiColorModeTest extends TestCase

0 commit comments

Comments
 (0)